home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Programming / SWI / source / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-06  |  1.8 KB  |  83 lines

  1. /* 
  2.   M_SYSTEMHOME      The SWI-Prolog path to its home. Look at your README how
  3.                     your OS's paths are translated to SWI Prolog paths.
  4.             The default is "/usr/local/lib/pl"
  5. */
  6.  
  7. #define M_SYSTEMHOME "/staff/jan/src/pl"
  8.  
  9. /*
  10.   M_BINDIR          The real path to the-SWI Prolog binaries.
  11.             The default is "/usr/local/bin"
  12. */
  13.  
  14. #define M_BINDIR "/staff/jan/bin/sun4"
  15.  
  16. /*
  17.   M_DEFSTARTUP      The SWI Prolog path to the user's Prolog environment.
  18.                     The default is ".plrc".
  19. */
  20.  
  21. #define M_DEFSTARTUP ".plrc"
  22.  
  23. /*
  24.   M_MANDIR        man(1) Manual directory
  25.   M_MANSEC        man(1) Manual section
  26. */
  27.  
  28. #define M_MANDIR /usr/local/man
  29. #define M_MANSEC 1
  30.  
  31. /*
  32.   M_PROLOG          The name for SWI-Prolog. This name is used for naming
  33.                     saved states.
  34.                     The default is "pl".
  35. */
  36.  
  37. #define M_PROLOG "pl"
  38.  
  39.          /*******************************
  40.          *   NON-UNIX SYSTEM MAY NEED:    *
  41.          *******************************/
  42.  
  43. /* 
  44.   M_SYSTEMDIR       The real path to M_SYSTEMHOME. This path may differ for
  45.                     systems without Unix(tm)-style filenames.
  46.             The default is M_SYSTEMHOME.
  47.             Set this define for OS/2, TOS, Mac-OS.
  48. */
  49. /*#define M_SYSTEMDIR  "C:\usr\public\SWI" */
  50.  
  51. /*
  52.   M_SYS             The executable name for SWI-Prolog.
  53.                     The default is M_PROLOG.
  54. */
  55. /*#define M_SYS "pl.exe"*/
  56.  
  57.          /*******************************
  58.          *         DEFAULTS        *
  59.          *******************************/
  60.  
  61. #ifndef M_SYSTEMHOME
  62. #    define M_SYSTEMHOME "/usr/local/lib/pl"
  63. #endif
  64. #ifndef M_BINDIR
  65. #    define M_BINDIR "/usr/local/bin"
  66. #endif
  67. #ifndef M_PROLOG
  68. #    define M_PROLOG "pl"
  69. #endif
  70. #ifndef M_DEFSTARTUP
  71. #    define M_DEFSTARTUP ".plrc"
  72. #endif
  73.                     /* Non-Unix paths  */
  74. #ifndef M_SYSTEMDIR
  75. #    define M_SYSTEMDIR M_SYSTEMHOME
  76. #endif
  77. #ifndef M_SEP
  78. #    define M_SEP "/"
  79. #endif
  80. #ifndef M_SYS
  81. #    define M_SYS M_PROLOG
  82. #endif
  83.